跳到主要内容

Save

Saves changes to the specified document.

Syntax

expression.Save();

expression - A variable that represents a Api class.

Parameters

This method doesn't have any parameters.

Returns

This method doesn't return any data.

Example

This example saves changes to the specified document.

let paragraph = Api.GetDocument().GetElement(0);
paragraph.AddText("This sample text is saved to the document.");
Api.Save();